home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-27 | 713 b | 27 lines |
- package com.symantec.itools.swing;
-
- import com.symantec.itools.beans.*;
-
- public final class TextAlignmentPropertyEditor
- extends TaggedIntPropertyEditor
- {
- private static TaggedInt[] m_Tags = null;
-
- // When the class loads, load the tags
-
- static
- {
- m_Tags = new TaggedInt[]
- {
- new TaggedInt("LEFT", com.sun.java.swing.SwingConstants.LEFT, "com.sun.java.swing.SwingConstants.LEFT"),
- new TaggedInt("CENTER", com.sun.java.swing.SwingConstants.CENTER, "com.sun.java.swing.SwingConstants.CENTER"),
- new TaggedInt("RIGHT", com.sun.java.swing.SwingConstants.RIGHT, "com.sun.java.swing.SwingConstants.RIGHT"),
- };
- }
-
- public TextAlignmentPropertyEditor()
- {
- super(m_Tags);
- }
- }
-